home *** CD-ROM | disk | FTP | other *** search
- /*
- ### destroy a help window ###
- */
-
- #include <suntool/sunview.h>
- #include <suntool/textsw.h>
- #include <suntool/panel.h>
-
- void
- destroy_query_windows()
- {
- extern short query_panel_show;
- extern Frame query_frame;
- extern Textsw query_textsw;
- extern Panel query_panel;
-
- if(query_panel_show){
- window_destroy(query_panel);
- window_destroy(query_textsw);
- window_destroy(query_frame);
- query_panel_show=0;
- }
- }
-
-